'User Name', 'type' => 'string'),
array('label' => 'Tweets Totales', 'type' => 'number'),
array('label' => 'Tweets Positivos', 'type' => 'number'),
array('label' => 'Tweets Negativos', 'type' => 'number'),
array('label' => 'Tweets Neutrales', 'type' => 'number')
);
$rows = array();
while($row = mysqli_fetch_array($result)){
$temp = array();
$temp[] = array('v' => (string) $row['user_name']);
$temp[] = array('v' => (int) $row['tweets_totales']);
$temp[] = array('v' => (int) $row['tweets_positivos']);
$temp[] = array('v' => (int) $row['tweets_negativos']);
$temp[] = array('v' => (int) $row['tweets_neutrales']);
$rows[] = array('c' => $temp);
}
$table['rows'] = $rows;
// Configurar las opciones del gráfico
$options = array(
'title' => 'My Chart Title',
'width' => 400,
'height' => 300,
'colors' => array('#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6')
);
// Dibujar el gráfico
echo '';
echo '';
echo '";
?>